home *** CD-ROM | disk | FTP | other *** search
- /* GCOPY.C
-
- Copyright (c) 1984, Gordon Lee Waite
- 413 W. Pleasant Street
- Maquoketa, Iowa 52060
-
- summary: gcopy d:xxxxxxx.xxx t:
-
- arguments: d:xxxxxxxx.xxx specifies the ambiguous file
- name used for the target search
-
- if the d:xxxxxxxx.xxx is left out, GCOPY
- assumes the users wants *.*
-
- t: specifies the drive for the output
-
- description: GCOPY is used to copy files from one drive to
- another. The user may enter an ambiguous
- file request and drive specifier. The program
- then goes through the matching files it finds
- in the directory and asks the user if he wants
- to copy over this file. The program keeps
- track of the desired files, then copies them
- after all have been specified.
-
- This program was compiled using the Manz Aztec C Compiler
-
- The compile and link process is as follows:
-
- c86 gcopy.c
- as86 -o gcopy.o gcopy.asm
- ln -o gcopy.exe gcopy.o dosa.lib videoa.lib libc.lib
- multdel gcopy.o gcopy.asm
-